home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / doc / tech-notes / Makefile < prev    next >
Makefile  |  1996-07-03  |  2KB  |  67 lines

  1. # $Id: Makefile,v 1.4 1996/07/03 21:30:44 dlm Exp $
  2. #
  3. #            T H E    P I N E    M A I L   S Y S T E M
  4. #
  5. #   Laurence Lundblade and Mike Seibel
  6. #   Networks and Distributed Computing
  7. #   Computing and Communications
  8. #   University of Washington
  9. #   Administration Building, AG-44
  10. #   Seattle, Washington, 98195, USA
  11. #   Internet: lgl@CAC.Washington.EDU
  12. #             mikes@CAC.Washington.EDU
  13. #
  14. #   Please address all bugs and comments to "pine-bugs@cac.washington.edu"
  15. #
  16. #
  17. #   Pine and Pico are registered trademarks of the University of Washington.
  18. #   No commercial use of these trademarks may be made without prior written
  19. #   permission of the University of Washington.
  20. #
  21. #   Pine, Pico, and Pilot software and its included text are Copyright
  22. #   1989-1996 by the University of Washington.
  23. #
  24. #   The full text of our legal notices is contained in the file called
  25. #   CPYRIGHT, included with this distribution.
  26. #
  27. #
  28. #   Pine is in part based on The Elm Mail System:
  29. #    ***********************************************************************
  30. #    *  The Elm Mail System  -  Revision: 2.13                             *
  31. #    *                                                                     *
  32. #    *             Copyright (c) 1986, 1987 Dave Taylor               *
  33. #    *             Copyright (c) 1988, 1989 USENET Community Trust    *
  34. #    ***********************************************************************
  35. #
  36.  
  37. SOURCES= index.html introduction.html background.html installation.html \
  38.     cmd-line.html config.html config-notes.html low-level.html \
  39.     porting.html
  40.  
  41. ALLSRC= $(SOURCES) for.pnuts
  42.  
  43. TXTS= index.txt introduction.txt background.txt installation.txt \
  44.     cmd-line.txt config.txt config-notes.txt low-level.txt \
  45.     porting.txt
  46.  
  47. HTML2TXT= lynx-fm -underscore -nolist -dump
  48.  
  49. WWWDIR= /usr/local/wwwdev/world/pine/tech-notes
  50.  
  51. PNUTS= $(WWWDIR)/pn4tn
  52.  
  53. .SUFFIXES: .html .txt
  54.  
  55. tech-notes.txt:    $(TXTS)
  56.     cat $(TXTS) > tech-notes.txt
  57.     rm $(TXTS)
  58.  
  59. www:    $(ALLSRC)
  60.     cp $(ALLSRC) $(WWWDIR)
  61.     ( cd $(WWWDIR) ; $(PNUTS) )
  62.  
  63. .html.txt:
  64.     $(HTML2TXT) $< > $@
  65.  
  66.